home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / cpp_libs / answrbok / 8_3.lha / 8_3 / makefile < prev    next >
Makefile  |  1993-08-08  |  1KB  |  37 lines

  1. C= CC -I. -I../../CC
  2. RROR= ../../error.o
  3.  
  4. ll: tstdate tstfile tstfloat tstint tstmail
  5.  
  6. stdate: tstdate.c 8_3_date.c date.h
  7. $(CC) tstdate.c -o tstdate $(ERROR)
  8.  
  9. stfile: tstfile.c 8_3_file.c 8_3_validfn.c
  10. $(CC) tstfile.c -o tstfile $(ERROR)
  11.  
  12. stfloat: tstfloat.c 8_3_float.c
  13. $(CC) tstfloat.c -o tstfloat $(ERROR)
  14.  
  15. stint: tstint.c 8_3_int.c
  16. $(CC) tstint.c -o tstint $(ERROR)
  17.  
  18. stmail: tstmail.c 8_3_mail.c
  19. $(CC) -I../8.2dir tstmail.c -o tstmail $(ERROR)
  20.  
  21. MP= tstdate.cmp tstfile.cmp tstfloat.cmp tstint.cmp tstmail.cmp
  22. UT= tstdate.out tstfile.out tstfloat.out tstint.out tstmail.out
  23.  
  24. stdate.out: tstdate tstdate.in ; tstdate < tstdate.in > tstdate.out
  25. stfile.out: tstfile tstfile.in ; tstfile < tstfile.in > tstfile.out
  26. stfloat.out: tstfloat tstfloat.in ; tstfloat < tstfloat.in > tstfloat.out
  27. stint.out: tstint tstint.in ; tstint < tstint.in > tstint.out
  28. stmail.out: tstmail tstmail.in ; tstmail < tstmail.in > tstmail.out
  29.  
  30. est: all $(CMP) $(OUT)
  31. cmp tstdate.out tstdate.cmp
  32. cmp tstfile.out tstfile.cmp
  33. cmp tstfloat.out tstfloat.cmp
  34. cmp tstint.out tstint.cmp
  35. cmp tstmail.out tstmail.cmp
  36. @echo test done
  37.